home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / ULCASE6.SQL < prev    next >
Encoding:
Text File  |  1995-05-09  |  1.1 KB  |  38 lines

  1. rem 
  2. rem $Header: ulcase6.sql 7020100.1 94/09/23 22:19:24 cli Generic<base> $ 
  3. rem 
  4. Rem  Copyright (c) 1991 by Oracle Corporation 
  5. Rem    NAME
  6. Rem      ulcase6.sql - <one-line expansion of the name>
  7. Rem    DESCRIPTION
  8. Rem      <short description of component this file declares/defines>
  9. Rem    RETURNS
  10. Rem 
  11. Rem    NOTES
  12. Rem      <other useful comments, qualifications, etc.>
  13. Rem    MODIFIED   (MM/DD/YY)
  14. Rem     ksudarsh   02/21/94 -  create unique index "empix"
  15. Rem     ksudarsh   03/11/93 -  comment out vms specific host command 
  16. Rem     ksudarsh   12/29/92 -  Creation 
  17. Rem     ksudarsh   12/28/92 -  Don't drop dept 
  18. Rem     cheigham   08/28/91 -  Creation 
  19. Rem     cheigham   03/19/91 -         Creation 
  20. set termout off
  21. rem host write sys$output "Building case6 demonstration tables.  Please wait"
  22. set feedback off
  23. drop table emp;
  24.  
  25. create table emp
  26.        (empno number(4) not null,
  27.     ename char(10),
  28.     job char(9),
  29.     mgr number(4),
  30.     hiredate date,
  31.     sal number(7,2),
  32.     comm number(7,2),
  33.     deptno number(2));
  34.  
  35. create unique index empix on emp(empno); 
  36.  
  37. exit
  38.